home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / jaz_clib.arc / JZLOCCUR.ASM < prev    next >
Assembly Source File  |  1989-04-09  |  328b  |  21 lines

  1.     assume cs:_text
  2. _text    segment public byte 'code'
  3.     public _jzloccur
  4.  
  5. _jzloccur   proc near
  6.  
  7.     push bp
  8.     mov bp,sp
  9.     mov bh,0        ; locate cursor on page 0
  10.     mov ah,2        ; locate cursor function
  11.     mov dh,[bp+4]        ; get row
  12.     mov dl,[bp+6]        ; get column
  13.     int 10h
  14.     mov sp,bp
  15.     pop  bp
  16.     ret
  17. _jzloccur  endp
  18. _text    ends
  19.     end
  20.  
  21.